home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cpptutor.arc / MESSAGE.H < prev    next >
Text File  |  1991-04-28  |  4KB  |  86 lines

  1.           // These messages are output when entering a location
  2.  
  3. char your_car_message[] = "";      // Never needed - can't enter here
  4. char pass_drop_off_message[] = 
  5.       "You are in the passenger drop off area.\n";
  6. char lobby_message[] = 
  7.       "You are in the airport lobby.\n";
  8. char baggage_claim_message[] = 
  9.       "You are in the baggage claim area.  There are a few bags left\n"
  10.       "over from the last flight slowly going around the carrosel.\n";
  11. char dark_room_message[] = 
  12.       "You are in a poorly lit room and as you move about, you step\n"
  13.       "on a board that gives way under your weight.  You fall into \n"
  14.       "a subbasement and are killed.     No vacation - game over.\n";
  15. char ticket_counter_message[] = 
  16.       "You are at the ticket counter area.\n";
  17. char tunnel_message[] = 
  18.       "You are in the tunnel to the gates.\n";
  19. char rest_room_message[] = 
  20.       "You are in the rest room, and it really feels good to have\n"
  21.       "taken care of that problem.\n";
  22. char snack_bar_message[] = 
  23.       "You are in the snack bar and gift shop.\n";
  24. char security_message[] = 
  25.       "You are in the security and inspection area leading toward\n"
  26.       "all gates.\n";
  27. char waiting_area_message[] = 
  28.       "You are in the waiting area between the gates.\n";
  29. char gate1_message[] = 
  30.       "You are in the gate 1 waiting area.\n";
  31. char gate2_message[] = 
  32.       "You are in the gate 2 waiting area.\n";
  33. char gate3_message[] = 
  34.       "You are in the gate 3 waiting area.\n";
  35. char gate4_message[] = 
  36.       "You are in the gate 4 waiting area.\n";
  37. char plane_message[] =
  38.       "You are inside of a large Jumbo-jet.  The doors close, and\n"
  39.       "the plane taxis away from the gate to prepare for takeoff.\n";
  40.  
  41.  
  42.           // These are output in response to a "look" command
  43.  
  44. char y_c_look_message[] =
  45.       "You are in your car with your friend, but that should have\n"
  46.       "been obvious.  You better hurry, you may miss your plane.\n";
  47. char p_d_o_look_message[] = 
  48.       "The airport entrance is to the north.\n";
  49. char l_look_message[] = 
  50.       "A small newsstand is here, and the latest edition of the news-\n"
  51.       "paper is on the newsstand.  A group of three ragged looking\n"
  52.       "characters have signs that proclaim \"BAN THE BOMB\", and are\n"
  53.       "trying to sell you some books.\n";
  54. char b_c_look_message[] = 
  55.       "There is a dark room to the west with a sign near the door\n"
  56.       "that cautions you to keep out - danger.  You should not enter\n"
  57.       "this room under any circumstances.\n";
  58. char d_r_look_message[] = "";
  59. char t_c_look_message[] = 
  60.       "There is a departure monitor on the west wall with a list of\n"
  61.       "all of the currently active flights.  Wilbur Snuffle is stand-\n"
  62.       "ing behind the ticket counter.  He asks if you have any baggage\n"
  63.       "to check through.\n";
  64. char t_look_message[] = 
  65.       "A sign on the north wall says \"TO ALL GATES\".\n";
  66. char r_r_look_message[] = 
  67.       "That's not at all polite to look around in here, and there is\n"
  68.       "nothing of interest here, you better hurry to your flight.\n";
  69. char s_b_look_message[] = 
  70.       "There are many expensive items for sale here, but have no need\n"
  71.       "of any of those expensive things.  They are always overpriced\n"
  72.       "at the airport anyway.  A sweet looking old lady is ready to\n"
  73.       "help you find what you need.\n";
  74. char s_look_message[] = 
  75.       "The security inspectors are to the north, and they look you\n"
  76.       "over very carefully as you enter.  The tall inspector is Ralph\n"
  77.       "and the short one is either Homer or Bill.\n";
  78. char w_a_look_message[] = 
  79.       "There is a departure monitor on the north wall, and a lot of\n"
  80.       "construction material laying around everywhere.\n";
  81. char g1_look_message[] = "";
  82. char g2_look_message[] = "";
  83. char g3_look_message[] = "";
  84. char g4_look_message[] = "";
  85. char plane_look_message[] = "";
  86.